compress/flate.decompressor.dict (field)
22 uses
	compress/flate (current package)
		inflate.go#L285: 	dict dictDecoder
		inflate.go#L350: 			f.toRead = f.dict.readFlush() // Flush what's left in case of error
		inflate.go#L504: 			f.dict.writeByte(byte(v))
		inflate.go#L505: 			if f.dict.availWrite() == 0 {
		inflate.go#L506: 				f.toRead = f.dict.readFlush()
		inflate.go#L594: 		if dist > f.dict.histSize() {
		inflate.go#L606: 		cnt := f.dict.tryWriteCopy(f.copyDist, f.copyLen)
		inflate.go#L608: 			cnt = f.dict.writeCopy(f.copyDist, f.copyLen)
		inflate.go#L612: 		if f.dict.availWrite() == 0 || f.copyLen > 0 {
		inflate.go#L613: 			f.toRead = f.dict.readFlush()
		inflate.go#L644: 		f.toRead = f.dict.readFlush()
		inflate.go#L656: 	buf := f.dict.writeSlice()
		inflate.go#L664: 	f.dict.writeMark(cnt)
		inflate.go#L670: 	if f.dict.availWrite() == 0 || f.copyLen > 0 {
		inflate.go#L671: 		f.toRead = f.dict.readFlush()
		inflate.go#L680: 		if f.dict.availRead() > 0 {
		inflate.go#L681: 			f.toRead = f.dict.readFlush()
		inflate.go#L791: 		dict:     f.dict,
		inflate.go#L795: 	f.dict.init(maxMatchOffset, dict)
		inflate.go#L815: 	f.dict.init(maxMatchOffset, nil)
		inflate.go#L834: 	f.dict.init(maxMatchOffset, dict)
|  | The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |